home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.09 Sep 94 / Getting Started / CPops.cp < prev    next >
Encoding:
Text File  |  1994-08-19  |  211 b   |  17 lines  |  [TEXT/R*ch]

  1. //CPops.cp
  2.  
  3. #include <iostream.h>
  4. #include "CPops.h"
  5.  
  6. CPops::CPops()
  7. {
  8.     grampsDataMember = 1000;
  9.     
  10.     cout << "CPops' constructor was called!\n";
  11. }
  12.  
  13. CPops::~CPops()
  14. {
  15.     cout << "CPops' destructor was called!\n";
  16. }
  17.